home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / screen-profiles / release < prev    next >
Encoding:
Text File  |  2009-06-02  |  1.3 KB  |  39 lines

  1. #!/bin/sh -e
  2. #
  3. #    release: grab the os/distro release
  4. #    Copyright (C) 2008 Canonical Ltd.
  5. #
  6. #    Authors: Dustin Kirkland <kirkland@canonical.com>
  7. #
  8. #    This program is free software: you can redistribute it and/or modify
  9. #    it under the terms of the GNU General Public License as published by
  10. #    the Free Software Foundation, version 3 of the License.
  11. #
  12. #    This program is distributed in the hope that it will be useful,
  13. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. #    GNU General Public License for more details.
  16. #
  17. #    You should have received a copy of the GNU General Public License
  18. #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  19.  
  20. if which lsb_release >/dev/null; then
  21.     # If lsb_release is available, use it
  22.     r=$(lsb_release -s -d)
  23.     if echo "$r" | grep -qs "^Ubuntu .*\..*\..*$"; then
  24.         # Use the -d if an Ubuntu LTS
  25.         printf "\005{=b }%s\005{-} " "$r"
  26.     else
  27.         # But for other distros the description
  28.         # is too long, so build from -i and -r
  29.         i=$(lsb_release -s -i)
  30.         r=$(lsb_release -s -r)
  31.         printf "\005{=b }%s %s\005{-} " "$i" "$r"
  32.     fi
  33. elif [ -r "/etc/issue" ]; then
  34.     # Otherwise, grab part of /etc/issue
  35.     printf "\005{=b }%s\005{-} " $(head -n1 /etc/issue | awk '{print $1}')
  36. else
  37.     echo "Unknown"
  38. fi
  39.